home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 October: Mac OS SDK / Dev.CD Oct 00 SDK1.toast / Development Kits / Mac OS / Multiprocessing 2.1v2 SDK / Sample Code / MP Sort Picts 12⁄04⁄99 / Sort / BuildConditionals.h next >
Encoding:
C/C++ Source or Header  |  1996-05-01  |  1.1 KB  |  56 lines  |  [TEXT/CWIE]

  1. /*
  2.     File:        BuildConditionals.h
  3.  
  4.     Contains:    Defines used to control what capabilities are built
  5.  
  6.     Written by: Dave Falkenburg
  7.  
  8.     Copyright:    © 1994 by Dave Falkenburg, all rights reserved.
  9.  
  10.     Change History (most recent first):
  11.      
  12.          <3>      9/9/94    DRF        Conditionalize AOCE support. Assume just a base system for now.
  13.          <2>      9/1/94    DRF        We only run under System 7.0 or later. NOTE: This typically
  14.                                     requires rebuilding precompiled headers.
  15.  */
  16.  
  17. #ifndef    _BUILDCONDITIONALS_
  18. #define    _BUILDCONDITIONALS_
  19.  
  20. #ifndef SystemSevenOrLater
  21. #define    SystemSevenOrLater    1
  22. #endif
  23.  
  24. #ifndef    USEOLDUNIVERSALHEADERS
  25. #define    USEOLDUNIVERSALHEADERS        0
  26. #endif
  27.  
  28. #ifndef    qDebug
  29. #define    qDebug                        0
  30. #endif
  31.  
  32. #ifndef    qAOCEAware
  33. #define    qAOCEAware                    0
  34. #endif
  35.  
  36. #ifndef    qUseQuickDrawGX
  37. #define    qUseQuickDrawGX                0
  38. #define    qRequireDrawGX                0
  39. #define    qUseQuickDrawGXDebugging    0
  40. #endif
  41.  
  42. #ifndef    qRequireThreadManager
  43. #define    qRequireThreadManager    1
  44. #endif
  45.  
  46. #ifndef    qInlineInputAware
  47. #define    qInlineInputAware    0
  48. #endif
  49.  
  50. #if    qUseQuickDrawGX
  51. //    Tell QuickDrawGX that we use universal headers
  52. #define    ppcinterfaces        1
  53. #endif
  54.  
  55. #endif
  56.